home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / enhance.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-03-09  |  823 b   |  30 lines

  1. /*
  2.   ImageMagick Image Enhance Methods.
  3. */
  4. #ifndef _MAGICK_ENHANCE_H
  5. #define _MAGICK_ENHANCE_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. extern MagickExport unsigned int
  12.   ContrastImage(Image *,const unsigned int),
  13.   EqualizeImage(Image *image),
  14.   GammaImage(Image *,const char *),
  15.   GammaImageChannel(Image *,const ChannelType,const double),
  16.   LevelImage(Image *,const char *),
  17.   LevelImageChannel(Image *,const ChannelType,const double,const double,
  18.     const double),
  19.   ModulateImage(Image *,const char *),
  20.   NegateImage(Image *,const unsigned int),
  21.   NegateImageChannel(Image *,const ChannelType,const unsigned int),
  22.   NormalizeImage(Image *),
  23.   NormalizeImageChannel(Image *,const ChannelType);
  24.  
  25. #if defined(__cplusplus) || defined(c_plusplus)
  26. }
  27. #endif
  28.  
  29. #endif
  30.